python dataframe replace in all dataframe

31

# You can use replace and pass the strings to find/replace as dictionary keys/items:
df.replace({'\n': '<br/>'}, regex=True)

Comments

Submit
0 Comments